10 lines
181 B
AppleScript
10 lines
181 B
AppleScript
tell application "Ghostty"
|
|
if it is running then
|
|
activate
|
|
delay 0.05
|
|
tell application "System Events" to keystroke "n" using {command down}
|
|
else
|
|
activate
|
|
end if
|
|
end tell
|